
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f9fafc;
            overflow-x: hidden;
        }
        
        /* Animated Background */
        .animated-bg {
            position: relative;
            background: linear-gradient(135deg, #f5f7fe 0%, #eef2ff 100%);
            overflow: hidden;            
        }
        .animated-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, rgba(37,99,235,0) 70%);
            animation: rotateGlow 25s infinite linear;
            z-index: 0;
        }
        @keyframes rotateGlow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Breadcrumb Hero */
        .breadcrumb-hero {
            background: linear-gradient(105deg, #0b2b5c 0%, #1e4a8a 100%);
            border-radius: 28px;
            padding: 1rem 1rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.2);
        }
        .breadcrumb-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.08"><path fill="white" d="M60,100 L100,40 L140,100 L100,160 Z M100,20 L140,80 L100,140 L60,80 Z" /></svg>');
            background-repeat: repeat;
            background-size: 40px;
            pointer-events: none;
        }
        .breadcrumb-hero h1 {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ffffff, #e0f2fe);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 0;
            text-align: center;
        }
        
        /* Coming Soon Hero Section */
        .coming-soon-card {
            background: white;
            border-radius: 2rem;
            box-shadow: 0 25px 45px -18px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
        }
        .coming-soon-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 50px -20px rgba(0,0,0,0.2);
        }
        .animated-icon {
            font-size: 5rem;
            color: #2563eb;
            animation: floatIcon 3s ease-in-out infinite;
            display: inline-block;
        }
        @keyframes floatIcon {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        .pulse-text {
            animation: pulseGlow 2s infinite;
        }
        @keyframes pulseGlow {
            0% { text-shadow: 0 0 0px rgba(37,99,235,0); }
            50% { text-shadow: 0 0 8px rgba(37,99,235,0.3); }
            100% { text-shadow: 0 0 0px rgba(37,99,235,0); }
        }
        .coming-badge {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border-radius: 60px;
            padding: 0.5rem 1.5rem;
            display: inline-block;
        }
        @media (max-width: 768px) {
            .breadcrumb-hero h1 { font-size: 2rem; }
            .animated-icon { font-size: 3.5rem; }
        }
        
        .fade-up {
            animation: fadeUp 0.7s ease-out forwards;
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        hr.gradient-hr {
            height: 4px;
            background: linear-gradient(90deg, #2563eb, #60a5fa, #bfdbfe);
            width: 100px;
            margin: 0.5rem auto 0;
            border-radius: 4px;
        }
        
        /* Sparkle animation */
        .sparkle {
            position: relative;
            overflow: hidden;
        }
        .sparkle::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 80%);
            animation: sparkleMove 8s infinite linear;
            pointer-events: none;
        }
        @keyframes sparkleMove {
            0% { transform: translateX(-20%) translateY(-20%) rotate(0deg); opacity: 0; }
            50% { opacity: 0.6; }
            100% { transform: translateX(20%) translateY(20%) rotate(360deg); opacity: 0; }
        }
